Carbon


ControlPanelDefProcPtr

Header: Processes.h Carbon status: Unsupported

typedef SInt32(* ControlPanelDefProcPtr) (
    SInt16 message, 
    SInt16 item, 
    SInt16 numItems, 
    SInt16 cPanelID, 
    EventRecord *theEvent, 
    SInt32 cdevValue, 
    DialogPtr cpDialog
);

You would declare your function like this if you were to name it MyControlPanelDefCallback:

SInt32 MyControlPanelDefCallback (
    SInt16 message, 
    SInt16 item, 
    SInt16 numItems, 
    SInt16 cPanelID, 
    EventRecord *theEvent, 
    SInt32 cdevValue, 
    DialogPtr cpDialog
);
message
item
numItems
cPanelID
theEvent
cdevValue
cpDialog

AVAILABILITY

Not supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)